@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');
    /* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #1a237e;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

#siteLogo {
    width: 190px;
    height: auto;
    display: block;
}

nav {
    margin-top: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

nav ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.4rem;
    margin-left: 0;
}

nav ul li {
    margin-right: 0;
}

nav a {
    text-decoration: none;
    color: #7580ff;
    font-weight: bold;
    transition: color 0.3s, background-color 0.3s;
}

nav a:hover {
    color: #fff;
}

.dropDown {
    position: relative;
    display: inline-block;
    margin: 1.5rem;
}

.dropDown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    width: 200px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropDown-content a {
    color: #5763ec;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropDown-content a:hover {
    color: #fff;
    background-color: #5763ec;
}

.show {
    display: block;
}

.hero {
    background: linear-gradient(to bottom right, #1a237e, #303f9f);
    position: relative;
    padding: 80px 20px 70px;
    color: #fff;
    text-align: center;
}

@media screen and (min-width: 740px) {
    .hero::after {
      display: none;
    }
  }

  
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.intro-video{
    position: relative;
    max-width: 750px;
    max-height: 750px;
    width: 50%;
    height: 50%;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.hero-content p {
    font-size: 1.05rem;
}

@keyframes fadeIn {
    from {
    opacity: 0;
    transform: translateY(20px);
}

to {
    opacity: 1;
    transform: translateY(0);
}

}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 70px 20px;
    background-color: #f9faff;
    text-align: center;
}

.feature {
    flex: 1 1 300px;
    margin: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    background: #ffffff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(87, 99, 236, 0.2);
}

.feature i {
    font-size: 36px;
    color: #5763ec;
    margin-bottom: 15px;
    display: block;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    max-width: 530px;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-img {
    width: 100%;
    flex: 0 0 100%;
    object-fit: cover;
}

.cta-button {
    margin-top: 2rem;
    text-align: center;
}

.btn-primary {
    background-color: #5763ec;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(87, 99, 236, 0.3);
}

.btn-primary:hover {
    background-color: #303f9f;
}

.feature h3 {
    margin-bottom: 1px;
}

footer {
    background-color: #1a237e;
    z-index: 1000;
    color: #fff;
    text-align: center;
    padding: 1rem;
    bottom: 0;
    width: 100%;
    margin-top: auto;
}

/* Contact page styles */
.contact-wrapper {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 12px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-intro h2 {
    font-size: 2rem;
    color: #303f9f;
    margin-bottom: 0.5rem;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

.contact-form {
    flex: 1 1 500px;
}

.contact-info {
    flex: 1 1 300px;
    background: #f6f8ff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: inset 0 0 10px rgba(87, 99, 236, 0.1);
    color: #303f9f;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #5763ec;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    color: #5763ec;
    margin-right: 10px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #303f9f;
}

.contact-content {
    background-color: #ffffff;
    padding: 50px 20px;
    max-width: 800px;
    margin: 30px auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-content h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #303f9f;
}

.contact-content p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

form {
    display: flex;
    flex-direction: column;
}

.input-container {
    position: relative;
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    transition: box-shadow 0.3s;
    font-size: 16px;
    outline:none;
}

.input-lable {
    position: absolute;
    color: #303f9f;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    transform: top 5s, font-size 0.3, color 0.3s;
}

.input-areaLable {
    position: absolute;
    color: #303f9f;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    transform: top 5s, font-size 0.3, color 0.3s;
    padding-bottom: 90px;
}

.input-field:focus +.input-lable,
.input-field:not(:placeholder-shown)+.input-lable {
    top: 0%;
    font-size: 12px;
    color: #5763ec;
    padding: 3px;
    background-color: #eafcff;
}

.input-field:focus +.input-areaLable,
.input-field:not(:placeholder-shown)+.input-areaLable {
    top: 0%;
    font-size: 12px;
    color: #5763ec;
    padding: 3px;
    background-color: #eafcff;
}

form input[type="submit"] {
    background-color: #303f9f;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form input[type="submit"]:hover {
    background-color: #5763ec;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/*About page styles*/
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
}

.team-card {
    background-color: #f4f6ff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    text-align: center;
    position: relative;
    will-change: transform;
  }
  
  .team-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 18px 45px rgba(87, 99, 236, 0.25);
  }
  
  .team-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
  }
  
  .team-card h4 {
    margin: 0.5rem 0;
    color: #303f9f;
  }
  
  .team-card .title {
    font-weight: bold;
    color: #5763ec;
  }
  
  .team-card .bio {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.4s ease;
    font-size: 0.9rem;
    color: #444;
    text-align: left;
    margin-top: 1rem;
  }
  

  
.timeline-horizontal {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2rem;
    margin: 2rem 0;
    background-color: #f9faff;
    border-radius: 10px;
    box-shadow: inset 0 0 20px rgba(87,99,236,0.05);
}

.timeline-card {
    min-width: 220px;
    flex: 0 0 auto;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    scroll-snap-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: #5763ec;
    border-radius: 50%;
    margin: 0 auto 10px;
    position: relative;
}

.timeline-dot.animated::after {
    content: '';
    position: absolute;
    top: -7.5px;
    left: -7.5px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #5763ec;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
    transform: scale(0.95);
    opacity: 1;
}

100% {
    transform: scale(1.4);
    opacity: 0;
}

}

.icon {
    font-size: 1.5rem;
    color: #303f9f;
    margin-bottom: 0.5rem;
}

/* Services page style */
.services-hero {
    background: linear-gradient(135deg, #1a237e 0%, #303f9f 100%);
    color: white;
    padding: 100px 20px 80px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.services-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.cta-glow {
    background-color: #ffffff;
    color: #303f9f;
    padding: 12px 26px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-glow:hover {
    background-color: #eaf1ff;
    color: #1a237e;
}

.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%23ffffff' fill-opacity='1' d='M0,128L48,154.7C96,181,192,235,288,229.3C384,224,480,160,576,122.7C672,85,768,75,864,106.7C960,139,1056,213,1152,240C1248,267,1344,245,1392,234.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'/></svg>");
    background-size: cover;    
    z-index: 1;
}



.cookie-notice {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(120%);
    width: min(920px, calc(100% - 32px));
    background: #ffffff;
    color: #222;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-notice.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.3rem 1.5rem;
    border-left: 6px solid #5763ec;
    border-radius: 16px;
}

.cookie-content h3 {
    margin-bottom: 0.3rem;
    color: #303f9f;
    font-size: 1.1rem;
}

.cookie-content p {
    margin: 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    border: none;
    background-color: #5763ec;
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.cookie-btn:hover {
    background-color: #303f9f;
    transform: translateY(-2px);
}

@media screen and (max-width: 700px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-btn {
        width: 100%;
    }
}


/* Media Queries for responsiveness */